#HTML <progress>
The <progress> HTML element displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
#Attributes
max
: This attribute describes how much work the task indicated by theprogress
element requires. Themax
attribute, if present, must have a value greater than0
and be a valid floating point number. The default value is1
.value
: This attribute specifies how much of the task that has been completed. It must be a valid floating point number between0
andmax
, or between0
and1
ifmax
is omitted. If there is novalue
attribute, the progress bar is indeterminate; this indicates that an activity is ongoing with no indication of how long it is expected to take.